home *** CD-ROM | disk | FTP | other *** search
/ Inter.Net 55-1 / Inter.Net 55-1.iso / CBuilder / Setup / BCB / data.z / childwin.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-02-09  |  701 b   |  22 lines

  1. //----------------------------------------------------------------------------
  2. #ifndef ChildWinH
  3. #define ChildWinH
  4. //----------------------------------------------------------------------------
  5. #include <Controls.hpp>
  6. #include <Forms.hpp>
  7. #include <Graphics.hpp>
  8. #include <Classes.hpp>
  9. #include <Windows.hpp>
  10. #include <System.hpp>
  11. //----------------------------------------------------------------------------
  12. class TMDIChild : public TForm
  13. {
  14. __published:
  15.     void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
  16. private:
  17. public:
  18.     virtual __fastcall TMDIChild(TComponent *Owner);
  19. };
  20. //----------------------------------------------------------------------------
  21. #endif    
  22.